home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install_OneFont 37.2 (2/3/94)
- ;
- ; Install script for OneFont
- ;
- ; Distributed as a part of the OneFont archive.
- ; OneFont is Copyright (C) 1994 by Jan Skypala
- ; All righs reseredved
-
- (set @default-dest "")
- (set old_level @user-level)
-
- (set OneFont "OneFont")
-
- (set #targetstr "In which directory should OneFont be installed?")
- (set #targetsel (cat "\nPlease select the directory or partition in which you would like "
- "OneFonts installed\n\nClick PROCEED to start the installation process.\n\n"
- @askdir-help))
- (set #copying-OneFont "Copying OneFont...")
- (set #fixing-ss "Correcting User-Startup file...")
- (set #startup-help (cat "If User-Startup file will be changed OneFonts will be started every "
- "time you boot so all programs will use new font instead of topaz.\n\n"
- "Two things will happen:\n\n"
- "· The Installer will check if your startup-sequence\n"
- " executes the file S:User-Startup, and will modify\n"
- " it to do so, if necessary.\n\n"
- "· The Installer will look through the S:User-Startup\n"
- " file and insert the correct OneFont statements\n"
- " where appropriate.\n\n"
- @startup-help))
-
- (set @target-dir
- (askdir
- (prompt #targetstr)
- (help #targetsel @askdir-help)
- (default "C:")
- )
- )
-
- (copyfiles
- (prompt @copying-OneFont)
- (source OneFont)
- (dest @target-dir)
- (infos)
- )
-
- (startup
- ("OneFont"
- (prompt #fixing-ss)
- (help #startup-help)
- (command (tackon @target-dir"OneFont"))
- )
- )
-